8526837b9e245a9574e73d119d3b2c0811074412,app/src/main/java/plugins/PluginsStorage.java,PluginsStorage,loadPlugins,#String#,42

Before Change


            addNewFiles();
        } catch (Exception e) {
            e.printStackTrace();
            Utils.deleteFile(JSON_FILE_LOCATION);
            loadPlugins(JSON_FILE_LOCATION);
        }
    }

After Change


        } catch (Exception e) {
            e.printStackTrace();
            if (Utils.fileExists(JSON_FILE_LOCATION)) {
                Utils.deleteFile(JSON_FILE_LOCATION);
                loadPlugins(JSON_FILE_LOCATION);
            }
        }